home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000174_news@newsmaster….columbia.edu _Sat Aug 16 01:40:50 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id BAA28729
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 16 Aug 1997 01:40:50 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id BAA15405
  7.     for kermit.misc@watsun; Sat, 16 Aug 1997 01:40:49 -0400 (EDT)
  8. Path: news.columbia.edu!sol.ctr.columbia.edu!hamblin.math.byu.edu!acs2.byu.edu!news.cuny.edu!nntp.upenn.edu!news.misty.com!www.nntp.primenet.com!globalcenter1!news.primenet.com!nntp.primenet.com!news-ext.gatech.edu!gatech!purdue!oitnews.harvard.edu!das-news2.harvard.edu!honeysuckle!rochester!cornellcs!newsstand.cit.cornell.edu!kimoto
  9. From: kimoto@spacenet.tn.cornell.edu (Paul Kimoto)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Installation
  12. Date: 16 Aug 1997 02:31:50 GMT
  13. Organization: Cornell University
  14. Lines: 26
  15. Sender: pk14@cornell.edu (Verified)
  16. Message-ID: <slrn5va48m.1p9.kimoto@naked.tn.cornell.edu>
  17. References: <33F3574E.7EBF@erols.com>
  18. Reply-To: kimoto@spacenet.tn.cornell.edu
  19. NNTP-Posting-Host: naked.tn.cornell.edu
  20. X-Newsreader: slrn (0.9.4.3 UNIX)
  21. Xref: news.columbia.edu comp.protocols.kermit.misc:7480
  22.  
  23. In article <33F3574E.7EBF@erols.com>, ajam wrote:
  24. >                                (The OS that I am using is Red Hat Linux
  25. >Release 4.1, which uses the Linux Kernel 2.0.27).  Well, then I tried to
  26. >compile it using "make linux", as stated in the "makefile", but during
  27. >the compilation it says that it cannot find some (ncurses) functions
  28. >like "printw" and "wmove".  The "makefile" stated that one shall make a
  29. >soft link from "ncurses.h" to "curses.h", and it is there.
  30.  
  31. It sounds like the compilation fails at the link stage, that is, when
  32. the command looks like
  33.  
  34. "gcc -o wermit <list of .o files> -lcurses <-l<something else>>".
  35.  
  36. This requires a file (or, more likely, a symbolic link leading to a real 
  37. file) named "libcurses.so" in a "standard" place, such as /lib or /usr/lib.
  38. Since you are presumably using ncurses (the correct procedure on Linux
  39. systems), the file is probably called "libncurses.so".  Then either
  40. (1) change the makefile to refer to "-lncurses" instead of "-lcurses", or
  41. (2) add a symbolic link from "libcurses.so" to "libncurses.so" in the
  42. appropriate directory.
  43.  
  44. -- 
  45. |||    "It was not granted you to complete the task, and           |||
  46. |||     yet you may not give it up."      --Rabbi Tarfon           |||
  47. |  Paul Kimoto                     <kimoto@spacenet.tn.cornell.edu>  |
  48. |  Dept. of Physics, Cornell University, Ithaca, NY 14853-2501  USA  |